string processing - significado y definición. Qué es string processing
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

Qué (quién) es string processing - definición

WIKIMEDIA LIST ARTICLE
Len (programming); String Functions (Computer Science); String functions; String manipulation algorithm; String manipulation function; String comparison; String Comparison; String processing; String functions (programming); Len(); String function

Comparison of programming languages (string functions)         
String functions are used in computer programming languages to manipulate a string or query information about a string (some do both).
String (computer science)         
  • (Hyper)cube of binary strings of length 3
DATA TYPE REPRESENTING A FINITE SEQUENCE OF ENCODED CHARACTERS
String algorithm; String algorithms; String data type; String (computing); StringBuffer and StringBuilder; Text string; String (programming); Character string; Binary string; String datatype; Character string (computer science); String Object; String manipulation; StringBuffer; StringBuilder; Java.lang.String; String handling; String Buffer; String (computer programming); String-oriented; Stringology; Bytestring; Byte string; String type; Pascal string; String (software); String (formal languages); String length; Sequence of symbols; Block move; String copy; Character strings; String (code); Strings (code); Data string; Finite word
In computer programming, a string is traditionally a sequence of characters, either as a literal constant or as some kind of variable. The latter may allow its elements to be mutated and the length changed, or it may be fixed (after creation).
data processing         
ANY PROCESS THAT USES A COMPUTER PROGRAM TO ENTER DATA AND SUMMARISE, ANALYSE OR OTHERWISE CONVERT DATA INTO USABLE INFORMATION
Data processing system; Data Processing; Data Processor; Electronic data processing system; History of data processing; Processed data
<application> The input, verification, organisation, storage, retrieval, transformation, and extraction of information from data. The term is normally associated with commercial applications such as stock control or payroll. (1995-03-30)

Wikipedia

Comparison of programming languages (string functions)

String functions are used in computer programming languages to manipulate a string or query information about a string (some do both).

Most programming languages that have a string datatype will have some string functions although there may be other low-level ways within each language to handle strings directly. In object-oriented languages, string functions are often implemented as properties and methods of string objects. In functional and list-based languages a string is represented as a list (of character codes), therefore all list-manipulation procedures could be considered string functions. However such languages may implement a subset of explicit string-specific functions as well.

For function that manipulate strings, modern object-oriented languages, like C# and Java have immutable strings and return a copy (in newly allocated dynamic memory), while others, like C manipulate the original string unless the programmer copies data to a new string. See for example Concatenation below.

The most basic example of a string function is the length(string) function. This function returns the length of a string literal.

e.g. length("hello world") would return 11.

Other languages may have string functions with similar or exactly the same syntax or parameters or outcomes. For example, in many languages the length function is usually represented as len(string). The below list of common functions aims to help limit this confusion.